home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_068 / mg1b / sys / amiga / varargs.h < prev   
Text File  |  1992-05-06  |  345b  |  12 lines

  1. /*
  2.  * Varargs, for use on AmigaDOS with the Lattice C compiler,
  3.  *    or (maybe?) the Manx compiler with 32-bit ints.
  4.  *    Blatantly lifted from 4.2BSD.
  5.  */
  6.  
  7. typedef char        *va_list;
  8. #define va_dcl        int va_alist;
  9. #define va_start(pv)    pv = (char *) &va_alist
  10. #define va_end(pv)    /* Naught to do... */
  11. #define va_arg(pv, t)    ((t *) (pv += sizeof(t)))[-1]
  12.